docs: add docs for GtkFrameClock
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Mon, 20 Jan 2014 20:59:04 +0000 (15:59 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Mon, 20 Jan 2014 23:27:28 +0000 (18:27 -0500)
gdk/gdkframeclockprivate.h

index 64f74efc947521ad36dd97e5ae3c9d1d01f55aac..5181d74ccaa01b866f38e20aaa5c6077a0592b37 100644 (file)
 
 G_BEGIN_DECLS
 
+/**
+ * GdkFrameClock:
+ * @parent_instance: The parent instance.
+ */
 struct _GdkFrameClock
 {
   GObject parent_instance;
@@ -39,10 +43,24 @@ struct _GdkFrameClock
   GdkFrameClockPrivate *priv;
 };
 
+/**
+ * GdkFrameClockClass:
+ * @parent_class: The parent class.
+
+ * @get_frame_time: Gets the time that should currently be used for
+ *    animations.
+ * @request_phase: Asks the frame clock to run a particular phase.
+ * @begin_updating: Starts updates for an animation.
+ * @end_updating: Stops updates for an animation.
+ * @freeze: 
+ * @thaw: 
+ */
 struct _GdkFrameClockClass
 {
   GObjectClass parent_class;
 
+  /*< public >*/
+
   gint64   (* get_frame_time) (GdkFrameClock *clock);
 
   void     (* request_phase)  (GdkFrameClock      *clock,
@@ -65,6 +83,7 @@ struct _GdkFrameClockClass
 
 struct _GdkFrameTimings
 {
+  /*< private >*/
   guint ref_count;
 
   gint64 frame_counter;